home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / kr_amap.h < prev    next >
C/C++ Source or Header  |  1994-04-25  |  2KB  |  95 lines

  1. /*****************************************************************************
  2.   FILE           : kr_amap.h
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : SNNS Kernel Function Prototypes for ARTMAP-Networks
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Kai-Uwe Herrmann
  10.   DATE           : 17.05.92
  11.  
  12.   CHANGED BY     : Sven Doering
  13.   IDENTIFICATION : @(#)kr_amap.h    1.8 3/15/94
  14.   SCCS VERSION   : 1.8
  15.   LAST CHANGE    : 3/15/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef _KR_AMAP_DEFINED_
  21. #define  _KR_AMAP_DEFINED_
  22.  
  23.  
  24.  
  25.  
  26. extern int             ArtMap_NoOfInpUnits_a;
  27. extern int             ArtMap_NoOfInpUnits_b;
  28. extern int             ArtMap_NoOfRecUnits_a;
  29. extern int             ArtMap_NoOfRecUnits_b;
  30.  
  31. extern struct Unit    *ArtMap_cl_unit;  /* Pointer to cl-unit */
  32. extern struct Unit    *ArtMap_nc_unit;  /* Pointer to nc-unit */
  33.  
  34.  
  35.  
  36.  
  37. /***************************************************************************/
  38. /* kram_init_i_act ()
  39.  
  40.    Sets the initial activation values of the units
  41. */
  42.  krui_err kram_init_i_act (
  43.  
  44.                                  double rho_a,
  45.                                  double rho_b,
  46.                                  double rho
  47.  
  48.                                 );
  49.  
  50.  
  51. /***************************************************************************/
  52. /* kram_sort ()
  53.  
  54.    Check for ARTMAP topology and create topo ptr array
  55. */
  56.  krui_err  kram_sort (
  57.  
  58.                             void
  59.  
  60.                            );
  61.  
  62.  
  63.  
  64.  
  65. /***************************************************************************/
  66. /* kram_getClassNo ()
  67.  
  68.    Returns the number of the actually activated class K, 1 <= K <= Mb
  69. */
  70.  int  kram_getClassNo (
  71.  
  72.                              void
  73.  
  74.                             );
  75.  
  76.  
  77.  
  78. /***************************************************************************/
  79. /* kram_AllMapUnitsActive ()
  80.  
  81.    Returns TRUE, if all MAP-Field-Units are active, else, FALSE
  82. */
  83.  bool  kram_AllMapUnitsActive (
  84.  
  85.                                      void
  86.  
  87.                                     );
  88.  
  89.  
  90.  
  91.  
  92. #endif 
  93.  
  94. /* 94 lines generated by deleteprivatedefinitions.awk */
  95.